home *** CD-ROM | disk | FTP | other *** search
/ Joystick Magazine 1995 July & August / cd No4 joystick No62.iso / mac / pc / SHARE / LIGHTLIB / LANGUAGE.Z / LLID.H < prev    next >
C/C++ Source or Header  |  1995-01-06  |  985b  |  42 lines

  1. // LLID.h : main header file for the LLID application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.  #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"       // main symbols
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // declarations for use of LLI
  12.  
  13. extern "C" LLOBJECT    lloApp; 
  14. extern "C" HANDLE      hApp;
  15.  
  16.  
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CLLIDApp:
  19. // See LLID.cpp for the implementation of this class
  20. //
  21.  
  22. class CLLIDApp : public CWinApp
  23. {
  24. public:
  25.  CLLIDApp();
  26.  
  27. // Overrides
  28.  virtual BOOL InitInstance();
  29.  
  30. // Implementation
  31.  
  32.  //{{AFX_MSG(CLLIDApp)
  33.  afx_msg void OnAppAbout();
  34.   // NOTE - the ClassWizard will add and remove member functions here.
  35.   //    DO NOT EDIT what you see in these blocks of generated code !
  36.  //}}AFX_MSG
  37.  DECLARE_MESSAGE_MAP()
  38. };
  39.  
  40.  
  41. /////////////////////////////////////////////////////////////////////////////
  42.